/*
 * 公共样式
 */
html {
    height: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    font-size: 14px;
}

blockquote,
body,
dd,
dl,
dt,
fieldset,
form,
input,
li,
ol,
p,
pre,
td,
th,
ul {
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans SC", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 400;
    overflow: auto;
    color: #2f2f2f;
    background-color: #ffffff;
}

table {
    border-collapse: collapse;
}

fieldset,
img {
    border: 0;
}

fieldset {
    margin: 0;
    padding: 0;
}

fieldset p {
    margin: 0;
    padding: 0 0 0 8px;
}

legend {
    display: none;
}

address,
caption,
em,
i,
strong,
th {
    font-style: normal;
    font-weight: 400
}

table caption {
    margin-left: -1px;
}

ol,
ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

caption,
th {
    text-align: left;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
}

a {
    transition: all 0.3s;
}

a,
a:hover {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    color: #2f2f2f;
}

a:focus,
li:focus {
    border: none;
    outline: none
}

button,
input,
textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

*,
:after,
:before {
    box-sizing: border-box;
    margin: 0;
}

:focus {
    outline: none;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #abaeba;
    border-radius: 3px;
}

.no-scroll ::-webkit-scrollbar {
    width: 0;
    height: 6px;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

img {
    max-width: 100%;
}

.app-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .app-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .app-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .app-container {
        max-width: 960px;
    }
}

@media (min-width: 992px) {
    .app-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .app-container {
        padding: 0;
        max-width: 1100px;
    }
}

@media (min-width: 1280px) {
    .app-container {
        padding: 0;
        max-width: 1200px;
    }

    .app-container.w1100 {
        max-width: 1100px;
    }
}


/**
 * 公共头部 
 */
.app-header {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    filter: drop-shadow(0 1px 0 rgba(221, 221, 221, .5));
}

.app-header .logo img {
    height: 40px;
    display: block;
}

.app-header .navbar-collapse-toggle {
    background: inherit;
    padding: 0;
    border: 0;
    text-transform: none;
    outline: none;
}

.app-header .navbar-collapse-toggle svg {
    vertical-align: middle;
    overflow: hidden;
}

.app-header .navbar-collapse-toggle .navbar-collapse-toggle-icon-close {
    display: none;
}

.app-header .navbar-collapse-toggle[aria-expanded="true"] .navbar-collapse-toggle-icon-close {
    display: inline;
}

.app-header .navbar-collapse-toggle[aria-expanded="true"] .navbar-collapse-toggle-icon {
    display: none;
}

.app-header .navbar-collapse {
    position: absolute;
    left: 0;
    z-index: 19;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .2s linear;
    top: 56px;
    border-top: 1px solid rgba(221, 221, 221, 0.5);
    background-color: #ffffff;
    filter: drop-shadow(0 1px 0 rgba(221, 221, 221, .5));
}

.app-header .navbar-collapse-toggle[aria-expanded="true"]+.navbar-collapse {
    max-height: calc(100vh - 56px);
    overflow: auto;
    opacity: 1;
}

.app-header .navbar-nav {
    padding: 16px 0;
}

.app-header .navbar-nav li.active {
    background-color: #f5f7f9;
}

.app-header .navbar-nav .navbar-link {
    font-size: 16px;
    display: flex;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: all .2s linear;
}

.app-header .navbar-nav .navbar-nav-toggle {
    padding: 0 32px;
    height: 0;
    overflow: hidden;
    transition: height .3s;
    background-color: #fff;
}

.app-header .navbar-nav .navbar-nav-toggle p {
    padding: 12px 15px;
    font-weight: 500;
}

.app-header .navbar-nav .navbar-nav-toggle p a {
    display: flex;
    align-items: center;
}

.app-header .navbar-nav .navbar-nav-toggle p a img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: block;
}

.app-header .navbar-nav .navbar-nav-toggle p a.on {
    color: #2259e5;
}

.app-header .navbar-nav li.active .navbar-nav-toggle {
    height: auto;
}

.app-header .navbar-collapse .login-link {
    color: #2259e5;
    border: 1px solid #2259e5;
    width: 100px;
    height: 30px;
    line-height: 28px;
    display: block;
    text-align: center;
    border-radius: 5px;
    margin: 0 auto 30px;
}

@media (min-width: 1280px) {
    .app-header {
        height: 60px;
        position: fixed !important;
        padding: 0 20px;
        filter: none;
        transition: all .2s ease-in-out;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        background: rgba(255, 255, 255, 0.44);
    }

    .app-header.header-scroll,
    .app-header:hover {
        background: #ffffff !important;
    }

    .app-header .navbar-collapse-toggle {
        display: none;
    }

    .app-header .navbar-collapse {
        overflow: visible !important;
        position: static;
        opacity: 1;
        width: auto;
        border-top: 0;
        filter: none;
        display: flex;
        max-height: inherit;
        background: transparent;
    }

    .app-header .navbar-collapse .navbar-nav {
        display: flex;
        margin: 0 auto;
        flex-direction: row;
    }

    .app-header .navbar-collapse .login-link {
        margin: 0;
        margin-left: auto;
    }

    .app-header .navbar-nav {
        padding: 0;
    }

    .app-header .navbar-nav .navbar-link {
        padding: 0 35px;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .app-header .navbar-nav li {
        position: relative;
    }

    .app-header .navbar-nav li.active {
        background: none;
    }

    .app-header .navbar-nav li.active .navbar-link,
    .app-header .navbar-nav li.on .navbar-link {
        color: #2259e5;
        position: relative;
    }

    .app-header .navbar-nav li.active .navbar-link::after,
    .app-header .navbar-nav li.on .navbar-link::after {
        content: '';
        width: calc(100% - 70px);
        height: 2px;
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        background: #2259e5;
        z-index: 999;
    }

    .app-header .navbar-nav li.active .navbar-link svg path,
    .app-header .navbar-nav li.on .navbar-link svg path {
        stroke: #2259e5 !important;
    }

    .app-header .navbar-nav .navbar-link svg {
        margin-left: 3px;
    }

    .app-header .navbar-nav .navbar-nav-toggle {
        width: 100%;
        position: absolute;
        text-align: center;
        opacity: 0;
        padding: 10px 0;
    }

    .app-header .navbar-nav li.active .navbar-nav-toggle {
        opacity: 1;
    }

    .app-header .navbar-nav li .navbar-nav-toggle a:hover {
        color: #2259e5;
    }
    .app-banner {
        overflow: hidden;
        position: relative;
        margin-top: 60px;
    }

}



/**
 * 公共栏目图
 */
.app-banner {
    overflow: hidden;
    position: relative;
}

.app-banner img {
    width: 100%;
    display: block;
}

.app-banner .pc {
    display: none;
}

.app-banner .text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.app-banner .text h3 {
    line-height: 1.4814;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.app-banner .text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 15px;
}

.app-banner .text a {
    width: 116px;
    height: 40px;
    display: block;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #02bff6, #1880fb);
}

@media (min-width: 768px) {
    .app-banner .mobile {
        display: none;
    }

    .app-banner .pc {
        display: block;
        height: 440px;
        object-fit: cover;
    }

    .app-banner .text h3 {
        font-size: 30px;
    }

    .app-banner .text p {
        font-size: 18px;
    }

    .app-banner .text a {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .app-banner .text h3 {
        font-size: 40px;
    }
}



/**
 * 公共面包屑
 */
.app-position {
    width: 100%;
    height: 50px;
    display: flex;
    font-weight: 500;
    align-items: center;
    background: #ffffff;
    position: relative;
    z-index: 9;
    box-shadow: 0 0 10px 10px rgba(19, 43, 58, 0.05);
}

.app-position .app-container {
    display: flex;
    align-items: center;
}

.app-position a {
    display: block;
    line-height: 50px;
    font-size: 16px;
    margin-right: 60px;
    position: relative;
}

.app-position a::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    background: #1b82fb;
}

.app-position a:hover,
.app-position a.active {
    color: #1b82fb;
}

.app-position a:hover:after,
.app-position a.active:after {
    display: block;
}




.app-pagination ul {
    display: flex;
    justify-content: center;
}

.app-pagination ul li {
    margin: 0 5px;
}

.app-pagination ul li a {
    border: 1px solid #e8e8e8;
    display: block;
    padding: 0 10px;
    border-radius: 4px;
    line-height: 28px;
    min-width: 30px;
    text-align: center;
    background: #fafdff;
}

.app-pagination ul li a:hover,
.app-pagination ul li.active a {
    color: #ffffff;
    border-color: #1b82fb;
    background: #1b82fb;
}

@media (min-width: 768px) {
    .app-pagination ul li a {
        min-width: 40px;
        line-height: 38px;
    }
}



.app-bottom {
    width: 100%;
    height: 200px;
    overflow: hidden;
    padding: 40px 0 0;
    background-size: cover;
    background-image: url(../images/bottom-bg.jpg);
}

.app-bottom h3 {
    color: #151b27;
    line-height: 44px;
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 500;
}

.app-bottom a {
    display: flex;
    width: 250px;
    height: 40px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 10px;
    background: #1b82fb;
}

.app-bottom a i {
    width: 34px;
    height: 11px;
    display: block;
    margin-left: 10px;
    background: url(../images/jt-icon.png);
}

@media (min-width: 1280px) {
    .app-bottom h3 {
        font-size: 30px !important;
    }
}


.common-title {
    text-align: center;
}

.common-title h3 {
    font-size: 20px;
    line-height: 38px;
    font-weight: bold;
}

.common-title p {
    font-size: 16px;
    line-height: 30px;
    margin: 15px 0 0;
}

.common-title a {
    line-height: 20px;
    display: inline-block;
    margin: 10px 0 0;
    color: #0e6fff;
}

@media (min-width: 992px) {
    .common-title h3 {
        font-size: 30px;
        line-height: 44px;
    }

    .common-title p {
        font-size: 20px;
        line-height: 34px;
    }

    .common-title a {
        line-height: 24px;
    }
}



/*
 * 公共新闻
 */
.common-news {
    width: 100%;
    padding: 50px 0 30px;
    overflow: hidden;
    background: url(../images/common-news.jpg) no-repeat center;
    background-size: cover;
}

.common-news .common-news-content {
    padding: 40px 0 0;
}

.common-news .common-news-content .dimg {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.common-news .common-news-content .dimg img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s;
}

.common-news .common-news-content .dimg a:hover img {
    transform: scale(1.2);
}

.common-news .common-news-content .dtext {
    background: #ffffff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

.common-news .common-news-content .dtext h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 8px;
    height: 24px;
    overflow: hidden;
}

.common-news .common-news-content .dtext h2 a:hover {
    color: #006eff;
}

.common-news .common-news-content .dtext p {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

.common-news .common-news-content .col {
    margin-bottom: 30px;
}

.app-footer {
    padding: 0 0 20px;
    background: #151b27;
}

.app-mobile-footer .footer-logo {
    display: flex;
    padding: 48px 0;
    justify-content: center;
}

.app-mobile-footer .footer-logo img {
    display: block;
    height: 40px;
}

.app-mobile-footer .footer-nav ul li {
    margin: 0 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.app-mobile-footer .footer-nav ul li .toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.app-mobile-footer .footer-nav ul li .toggle h5 {
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.app-mobile-footer .footer-nav ul li .toggle .dropdown-icon {
    opacity: 0.7;
}

.app-mobile-footer .footer-nav ul li a.toggle .dropdown-icon {
    transform: rotate(-90deg);
}

.app-mobile-footer .footer-nav ul li .dropdown-menus {
    display: none;
}

.app-mobile-footer .footer-nav ul li.open .dropdown-menus {
    display: block;
}

.app-mobile-footer .footer-nav ul li .dropdown-menus p {
    padding: 8px 0;
}

.app-mobile-footer .footer-nav ul li .dropdown-menus p a {
    font-size: 14px;
    color: #fff;
    opacity: .8;
}

.app-mobile-footer .footer-nav ul li .social .method {
    color: #A8A8A8;
    display: flex;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
}

.app-mobile-footer .footer-nav ul li .social .method-img {
    padding: 10px 0;
    color: #A8A8A8;
}

.app-mobile-footer .footer-nav ul li .social .method-img img {
    width: 120px;
    height: 120px;
    display: block;
}

.app-mobile-footer .footer-nav ul li .social .method-img p {
    text-align: center;
    width: 120px;
    margin: 10px 0 0;
    line-height: 22px;
}

.app-pc-footer {
    display: none;
}
.web_copyright {
    text-align: center;
    font-size: 14px;
    color: #A8A8A8;
}
.web_copyright a {
    color: #A8A8A8;
    display: inline-block;
}

@media (min-width: 1280px) {
    .app-footer {
        padding: 50px 0 20px;
    }

    .app-mobile-footer {
        display: none;
    }

    .app-pc-footer {
        display: flex;
    }    

    .app-pc-footer .footer-logo img {
        display: block;
        height: 38px;
    }

    .app-pc-footer dl {
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .app-pc-footer dl dt {
        padding: 0 30px 14px;
        font-size: 20px;
        font-weight: bold;
        color: #dee0e3;
        line-height: 38px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .app-pc-footer dl dt a{
        color: #dee0e3;
    }

    .app-pc-footer dl dd {
        padding: 0 30px;
        margin: 15px 0 0;
        flex: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .app-pc-footer dl:nth-child(1) dd {
        padding-left: 0;
    }
    
    .app-pc-footer dl:nth-child(1) dt {
        padding-left: 0;
    }

    .app-pc-footer dl dd .method {
        color: #bbbfc4;
        display: flex;
        font-size: 14px;
        line-height: 22px;
        padding: 10px 0;
    }

    .app-pc-footer dl dd .links {
        color: #bbbfc4;
        font-size: 14px;
        line-height: 22px;
        padding: 10px 0;
    }

    .app-pc-footer dl dd .links a {
        color: #bbbfc4;
    }
    
    .footer-code {
        flex: 1 !important;
    }

    .footer-code dd{
        border-right: 0 !important;
    }

    .app-pc-footer .method-img {
        padding: 10px 0;
        color: #A8A8A8;
    }

    .app-pc-footer .method-img img {
        width: 120px;
        margin: 0 auto;
        display: block;
    }

    .app-pc-footer .method-img p {
        text-align: center;
        margin: 10px 0 0;
    }
}

.footer-links,
.footer-links a,
.footer-keywords{
    color:#A8A8A8;
    line-height: 28px;
}

.footer-links a {
    display: inline-block;
}

.footer-links .title,
.footer-keywords .title {
    font-weight: 600;
    flex: 0 0 auto;
}

.footer-links {
    margin-bottom: 10px;
    margin: 40px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links,
.footer-keywords {
    display: flex;
}

.footer-keywords{
    margin-bottom:20px;
}